Security News
RubyGems.org Adds New Maintainer Role
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
@material/animation
Advanced tools
Animation Variables and Mixins used by Material Components for the web
@material/animation is a utility package from Material Design Components (MDC) that provides a set of functions and constants to help create smooth and consistent animations. It is designed to be used with other MDC components to ensure that animations follow Material Design guidelines.
Animation Curves
Provides predefined animation curves such as easeInOut, easeOut, and easeIn that can be used to create smooth transitions and animations.
const { easeInOut, easeOut, easeIn } = require('@material/animation');
// Example usage in a CSS-in-JS style object
const styles = {
transition: `all 250ms ${easeInOut}`
};
Animation Durations
Includes standard durations for animations, such as short, medium, and long, to ensure consistency across different components.
const { duration } = require('@material/animation');
// Example usage in a CSS-in-JS style object
const styles = {
transitionDuration: `${duration.standard}ms`
};
Keyframe Animations
Provides utility functions to handle keyframe animations and ensure compatibility across different browsers.
const { getCorrectEventName } = require('@material/animation');
// Example usage in JavaScript
const animationEndEvent = getCorrectEventName(window, 'animationend');
element.addEventListener(animationEndEvent, () => {
console.log('Animation ended');
});
Anime.js is a lightweight JavaScript animation library with a simple, yet powerful API. It supports various types of animations including CSS properties, SVG, DOM attributes, and JavaScript objects. Compared to @material/animation, Anime.js offers a more extensive set of features and greater flexibility for complex animations.
GSAP (GreenSock Animation Platform) is a robust JavaScript library for high-performance animations. It is widely used for creating complex timelines and animations with precise control. GSAP provides more advanced features and customization options compared to @material/animation, making it suitable for more intricate animation needs.
Velocity is an animation engine that combines the best of jQuery and CSS transitions. It offers a rich set of features for creating smooth animations and is known for its performance. While @material/animation focuses on Material Design guidelines, Velocity provides a more general-purpose solution for web animations.
MDC Animation is a Sass / CSS / JavaScript library which provides a toolbelt for Material Design animation, based off of the motion guidelines. Currently, it only covers easing curves.
npm install --save @material/animation
We currently have variables for the following 3 animation curves:
Variable name | timing function | use case |
---|---|---|
$mdc-animation-fast-out-slow-in-timing-function | cubic-bezier(.4, 0, .2, 1) | Standard curve; any animations that are visible from start to finish (e.g. a FAB transforming into a toolbar) |
$mdc-animation-linear-out-slow-in-timing-function | cubic-bezier(0, 0, .2, 1) | Animations that cause objects to enter the screen (e.g. a fade in) |
$mdc-animation-fast-out-linear-in-timing-function | cubic-bezier(.4, 0, ``, 1) | Animations that cause objects to leave the screen (e.g. a fade out) |
Simply drop mdc-animation
into your build and start using the variables:
.mdc-thing--animating {
animation: foo 175ms $mdc-animation-fast-out-slow-in-timing-function;
}
or the mixins, which simply assign their corresponding variables to the animation-timing-function
property:
.mdc-thing--on-screen {
@include mdc-animation-fast-out-linear-in;
}
Every mixin has the same name as its corresponding variable, without the -timing-function
suffix.
MDC Animation also provides helper functions for defining transitions for when something enters and exits the frame. A very common example of this is something that fades in and then fades out using opacity.
@import "@material/animation/functions";
.mdc-thing {
transition: mdc-animation-exit(/* $name: */ opacity, /* $duration: */ 175ms, /* $delay: */ 150ms);
opacity: 0;
will-change: opacity;
&:active {
transition: mdc-animation-enter(opacity, 175ms /*, $delay: 0ms by default */);
opacity: 1;
}
}
Note that these functions also work with the animation
property.
@import "@material/animation/functions";
@keyframes fade-in {
from {
transform: translateY(-80px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.mdc-thing {
animation: mdc-animation-enter(fade-in, 350ms);
}
NOTE: dist/ will be available when installing via NPM.
Alternatively, you can include the built stylesheet and use the classes it exports within your HTML
<link href="path/to/mdc-animation/dist/mdc-animation.css" rel="stylesheet">
<!-- ... -->
<div id="my-animating-div" class="mdc-animation-fast-out-slow-in">hi</div>
CSS Classes have the exact same name as their mixin counterparts.
All animation variables are marked with !default
, thus they can be overridden should the need
arise.
MDC Web ships with a set of utility functions designed to make animations easier to implement.
To use:
import {getCorrectEventName} from '@material/animation';
const eventToListenFor = getCorrectEventName(window, 'animationstart');
Method Signature | Description |
---|---|
getCorrectEventName(windowObj: Object, eventType: string) | Returns a JavaScript event name. Prefixed if necessary. |
getCorrectPropertyName(windowObj: Object, eventType: string) | Returns a CSS property name. Prefixed if necessary. |
FAQs
Animation Variables and Mixins used by Material Components for the web
The npm package @material/animation receives a total of 419,283 weekly downloads. As such, @material/animation popularity was classified as popular.
We found that @material/animation demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 15 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
RubyGems.org has added a new "maintainer" role that allows for publishing new versions of gems. This new permission type is aimed at improving security for gem owners and the service overall.
Security News
Node.js will be enforcing stricter semver-major PR policies a month before major releases to enhance stability and ensure reliable release candidates.
Security News
Research
Socket's threat research team has detected five malicious npm packages targeting Roblox developers, deploying malware to steal credentials and personal data.